home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / Andromedia / _install / su.sh < prev   
Linux/UNIX/POSIX Shell Script  |  1997-03-10  |  1KB  |  50 lines

  1. #!/bin/sh
  2. #-----------------------------------------------------------------------------
  3. #-----------------------------------------------------------------------------
  4.  
  5.  
  6. echo "
  7. Thank you for choosing to install ARIA.  
  8. "
  9. #
  10. # Check if root
  11. #
  12. if [ "$USER" = "root" ]; then
  13. while true
  14. do
  15.   echo "Would you like to install ARIA, or Quit ? [y/q] \c"
  16.  
  17.   read ans
  18.   case "$ans" in
  19.         y|Y|yes|YES) exec $COMPANY_DIR/_install/install_unbundled;exit 0
  20.             ;;
  21.         N|Q|n|q|No|quit|NO|QUIT|Quit) echo;echo;echo "   cancelling installation of ARIA"; sleep 5 ; exit 1
  22.             ;;
  23.         * ) echo ; echo ; echo "Please answer with y if you wish to install,"
  24.                    echo "   or q if you wish to quit (stop the install)"
  25.             ;;
  26.   esac
  27. done
  28.  
  29. else
  30. while true
  31. do
  32.   echo "You need to be super user to install this software. \c"
  33.   echo ""
  34.   echo "Would you like to install ARIA, or Quit ? [y/q] \c"
  35.  
  36.   read ans
  37.   case "$ans" in
  38.         y|Y|yes|YES) echo "";echo "Enter super user \c";su root -c '$COMPANY_DIR/_install/install_unbundled';exit 0
  39.             ;;
  40.         N|Q|n|q|No|quit|NO|QUIT|Quit) echo;echo;echo "   cancelling installation of ARIA"; sleep 5 ; exit 1
  41.             ;;
  42.         * ) echo ; echo ; echo "Please answer with y if you wish to install,"
  43.                    echo "   or q if you wish to quit (stop the install)"
  44.             ;;
  45.   esac
  46. done
  47.  
  48.  
  49. fi
  50.